home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / spidr100 / setup.arv / ABOUT.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-09-15  |  853 b   |  41 lines

  1. {----------------------------------------------------------------------------
  2. |
  3. | Library: Spider Containers for Object Pascal
  4. |
  5. | Module: About.Pas
  6. |
  7. | Description: About box form.
  8. |
  9. | History: Version 1.0  March 1996. Copyright (c) 1996 Michel Brazeau
  10. |                                   Interval Software
  11. |
  12. |---------------------------------------------------------------------------}
  13. unit About;
  14.  
  15. interface
  16.  
  17. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
  18.   Buttons, ExtCtrls;
  19.  
  20. type
  21.   TAboutBox = class(TForm)
  22.     Panel: TPanel;
  23.     OKButton: TBitBtn;
  24.     ProgramIcon: TImage;
  25.     ProductName: TLabel;
  26.     Version: TLabel;
  27.     Copyright: TLabel;
  28.     Compiler: TLabel;
  29.   private
  30.     { Private declarations }
  31.   public
  32.     { Public declarations }
  33.   end;
  34.  
  35. implementation
  36.  
  37. {$R *.DFM}
  38.  
  39. end.
  40.  
  41.